home *** CD-ROM | disk | FTP | other *** search
- ; EXC Commands:
- ; DELAY nnn Wait nnn seconds
- ; KEY menomonic Push the key onto the keyboard stack.
- ; TYPE "string" Push the ASCII string onto the keyboard stack.
- ; WAITFOR [NOT] "string" Wait until the string appears on the screen. If NOT
- ; spcified, wait until string is not on screen.
- ; WAITSCR Wait until anything changes on the screen.
- ; SETWAIT nnn Wait nnn seconds before a WAITFOR or WAITSCR times
- ; out.
- ; TIMEOUT label Branch to label when the next WAITFOR or WAITSCR
- ; times out.
- ; SEARCH "string" Test to see if the string is on the screen. Sets
- ; "Y/N" condition.
- ; IFY label If condition set to Y, go to label.
- ; IFN label If condition set to N, go to label.
- ; GOTO label Unconditional branch to label.
- ; :label Define a label.
- ; QUIT Halt processing the script file.
- ; End-of-file on the script file issues an automatic
- ; QUIT.
- ; BEEP Sound a short beep on speaker. Useful in debugging
- ; scripts.
- ; CASE ON|OFF Determines whether WAITFOR and SEARCH tests should
- ; be case-sensitive (ON). Default=ON (case-sensitive)
- ;
- ; Leading and trailing blanks, lines beginning with a semicolon and blank
- ; lines are ignored by the script processor.
- ;
- ; The following key mnemonics are recognized:
- ;
- ; Single keys:
- ; <x> <BKSP> <DEL> <DOWN> <END> <ENTER> <F1-F12> <ESC> <HOME> <INS> <LEFT>
- ; <PGDN> <PGUP> <PRTSC> <RIGHT> <TAB> <UP> <GRAY5> <GRAY+> <GRAY-> <GRAY*>
- ;
- ; Shift combinations: <SHF+s> CTL combinations: <CTL+s>
- ; ALT combinations: <ALT+s>
- ;
- ; x = any ASCII value that can be entered from the keyboard with a single
- ; key, or SHIFT + a single key.
- ; s = any of the single key mnemonic keywords or character except <PRTSC>.
- ;
- ; NOTE: Some SHF, CTL and ALT key combinations are undefined. See the
- ; keycode table in EXC.DOC.
- ;
- ; WAITFOR, SEARCH, IFY, IFN and SETWAIT will not function properly if the
- ; executing apllication is in a graphics mode.
- ;
- ; Example:
- WAITFOR "Entries"
- TYPE "FO"
- WAITFOR "OPEN CATALOG"
- TYPE "E:\OZCIS\NOVLIB\"
- KEY <TAB>
- KEY <ESC>
- TYPE "NOVLIB.L11"
- KEY <CTL+ENTER>
- WAITFOR "NOVLIB.L11"
- TYPE "SLADDNAEA"
- KEY <CTL+ENTER>
- DELAY 2;
- WAITFOR NOT "Sorting Index"
- TYPE "FS"
- KEY <CTL+ENTER>
- DELAY 2
- WAITFOR NOT "Please wait."
- DELAY 1
- WAITFOR NOT "Please wait."
- BEEP
- KEY <ALT+X>
- QUIT
-